package com.nielsenedu.array2d.CandyBox;

public class Candy {
	
	private String flavor;
	
	public Candy(String flavor) {
		this.flavor = flavor;
	}
	/** Returns a String representing the flavor of this piece of candy */
	public String getFlavor()
	{
		return flavor;
	}
	
	public String toString() {
		return flavor;
	}
	// There may be instance variables, constructors, and methods that
	// are not shown

}
